home *** CD-ROM | disk | FTP | other *** search
- /*
- ==========================================================================
- Module: AFStrNLD.js
- ==========================================================================
- JavaScript language dependent strings.
- ==========================================================================
- The Software, including this file, is subject to the End User License
- Agreement.
- Copyright (c) 1998, Adobe Systems Incorporated, All Rights Reserved.
- ==========================================================================
- */
-
- /* ==== Strings ==== */
- /* All of our user strings are defined here. Use Shift-JIS encoding for
- ** double byte platforms. These strings need to be translated for each language. */
- if (app.language == "NLD") {
- IDS_LANGUAGE = "NLD";
- IDS_GREATER_THAN = "Ongeldige waarde: moet groter zijn dan of gelijk aan %s.";
- IDS_GT_AND_LT = "Ongeldige waarde: moet groter zijn dan of gelijk aan %s en minder dan of gelijk aan %s.";
- IDS_LESS_THAN = "Ongeldige waarde: moet minder zijn dan of gelijk aan %s.";
- IDS_INVALID_MONTH = "** Ongeldig **";
- IDS_INVALID_DATE = "Ongeldige datum/tijd: Controleer of de datum/tijd bestaat en of de 4 cijfers van het jaar zijn ingevuld."
- IDS_INVALID_VALUE = "De ingevoerde waarde komt niet overeen met de veldindeling";
- IDS_AM = "am";
- IDS_PM = "pm";
-
- /* This string contains month info in the following format:
- ** month name or abbreviation (left bracket) month number (right bracket)
- ** Note that the first string with the given number will be returned by
- ** AFGetMonthString (look in AForm.js)
- ** Also note that the months and abbreviations should be in order of most
- ** to least definitive in case an abbreviation matches part of another
- ** month or abbreviation */
- IDS_MONTH_INFO = "januari[1]" +
- "februari[2]" +
- "maart[3]" +
- "april[4]" +
- "mei[5]" +
- "juni[6]" +
- "juli[7]" +
- "augustus[8]" +
- "september[9]" +
- "oktober[10]" +
- "november[11]" +
- "december[12]" +
- "sept[9]" +
- "jan[1]" +
- "feb[2]" +
- "mrt[3]" +
- "apr[4]" +
- "jun[6]" +
- "jul[7]" +
- "aug[8]" +
- "sep[9]" +
- "okt[10]" +
- "nov[11]" +
- "dec[12]" +
- "January[1]" +
- "February[2]" +
- "March[3]" +
- "April[4]" +
- "May[5]" +
- "June[6]" +
- "July[7]" +
- "August[8]" +
- "September[9]" +
- "October[10]" +
- "November[11]" +
- "December[12]" +
- "Sept[9]" +
- "Jan[1]" +
- "Feb[2]" +
- "Mar[3]" +
- "Apr[4]" +
- "Jun[6]" +
- "Jul[7]" +
- "Aug[8]" +
- "Sep[9]" +
- "Oct[10]" +
- "Nov[11]" +
- "Dec[12]";
- }
-